home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / Caml Light 0.61 / Source / src / runtime / prims.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-09-24  |  184 b   |  12 lines  |  [TEXT/MPS ]

  1. /* Interface with C primitives. */
  2.  
  3. #ifndef _prims_
  4. #define _prims_
  5.  
  6. typedef value (*c_primitive)();
  7.  
  8. extern c_primitive cprim[];
  9. extern char * names_of_cprim[];
  10.  
  11. #endif /* _prims_ */
  12.